home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d7 / ap102.arc / BIMODEM.SLT < prev    next >
Text File  |  1991-04-17  |  1KB  |  40 lines

  1. //  ________________________________________________________________________
  2. // |                                    |
  3. // | A Sample Script file for use with Telix 3.10                |
  4. // |                                    |
  5. // | This script will simply execute BiMenu, from there you will have       |
  6. // | complete control of all aspects of installing and running BiModem.     |
  7. // |________________________________________________________________________|
  8. //
  9. //  Very simple yet it really helps.  now if you execute this script from
  10. //  Telix, it should do the trick.  Feel free to enhance this as there are
  11. //  many directions you could take.
  12. //
  13. //  4/16/90:  Slight changes to ensure compatibility with the BIMODXMT and
  14. //  BIMODRCV scripts included with Autopuma.  BIMODEM.CFG and BIMODEM.PTH
  15. //  are forced to the default Telix directory.
  16.  
  17. str bimodcmd [127];
  18. str pthpath [80];
  19.  
  20. main()
  21. {
  22.  
  23.     // ensure telix dir has a trailing slash.
  24.     if (subchr (_telix_dir, strlen (_telix_dir)-1) != '\') {
  25.         strcat (_telix_dir, "\");
  26.     }
  27.  
  28.     bimodcmd="BiMenu ";
  29.     // set path to config file
  30.     strcat (bimodcmd, "/C ");
  31.     strcat (bimodcmd, _telix_dir);
  32.     strcat (bimodcmd, "BIMODEM.CFG");
  33.  
  34.     // set path to transfer list file
  35.     strcat (bimodcmd, " /P ");
  36.     strcat (bimodcmd, _telix_dir);
  37.     strcat (bimodcmd, "BIMODEM.PTH");
  38.     dos (bimodcmd,0);
  39. }
  40.